home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / MEMMON.DIR / 00079_Profile scripts.ls < prev    next >
Encoding:
Text File  |  2003-04-21  |  405 b   |  15 lines

  1. on ProfileCasts
  2.   output = EMPTY
  3.   repeat with temp = 1 to the number of castMembers
  4.     if cast(temp).castType <> #empty then
  5.       castSize = cast(temp).size / 1024
  6.       if castSize < 1 then
  7.         put "Cast" && temp && "is <1k" & RETURN after output
  8.         next repeat
  9.       end if
  10.       put "Cast" && temp && "is" && castSize & "k" & RETURN after output
  11.     end if
  12.   end repeat
  13.   return output
  14. end
  15.